From 7795efdbafb8ee642ff531df5f9ccc9eaa8199c3 Mon Sep 17 00:00:00 2001 From: "kfraser@localhost.localdomain" Date: Mon, 10 Jul 2006 14:58:42 +0100 Subject: [PATCH] Use $(MAKE) instead of make to run sub-makefiles to correcly support -j flag. Signed-off-by: Tristan Gingold --- xen/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/xen/Makefile b/xen/Makefile index cedd21396e..4279b0ef27 100644 --- a/xen/Makefile +++ b/xen/Makefile @@ -16,7 +16,7 @@ dist: install .PHONY: build install clean distclean cscope TAGS tags build install debug clean distclean cscope TAGS tags:: - make -f Rules.mk _$@ + $(MAKE) -f Rules.mk _$@ .PHONY: _build _build: $(TARGET).gz -- 2.30.2